home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / RTLWIN16.PAK / OLENLS.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  22KB  |  504 lines

  1. /***
  2. *olenls.h - National language support functions.
  3. *
  4. *Purpose:
  5. *  This describes the NLSAPI functions for Win16 and Mac.  This is a subset
  6. *  of Win32 NLSAPI, and is a non-Unicode version.
  7. *
  8. *Implementation Notes:
  9. *  This files is largely ported from the Win32 header winnls.h.
  10. *
  11. *****************************************************************************/
  12.  
  13. /* $Copyright: 1994$ */
  14.  
  15. #ifndef _OLENLS_
  16. #define _OLENLS_
  17. #define __OLENLS_H
  18.  
  19. #ifndef NONLS
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24.  
  25.  
  26. #ifndef EXTERN_C
  27. # ifdef __cplusplus
  28. #  define EXTERN_C extern "C"
  29. # else
  30. #  define EXTERN_C extern
  31. # endif
  32. #endif
  33.  
  34. #ifdef _MAC
  35. # ifndef FAR
  36. #  define FAR
  37. # endif
  38. # ifdef _MSC_VER
  39. #  define NLSAPI_(TYPE) EXTERN_C TYPE __pascal
  40. # else
  41. #  define NLSAPI_(TYPE) EXTERN_C pascal TYPE
  42. # endif
  43. #else
  44. # define NLSAPI_(TYPE) EXTERN_C TYPE WINAPI
  45. #endif
  46.  
  47.  
  48. /***************************************************************************\
  49. * Constants
  50. *
  51. * Define all constants for the NLS component here.
  52. \***************************************************************************/
  53.  
  54. /*
  55.  *  Character Type Flags.
  56.  */
  57. #define CT_CTYPE1            0x00000001     /* ctype 1 information */
  58. #define CT_CTYPE2            0x00000002     /* ctype 2 information */
  59. #define CT_CTYPE3            0x00000004     /* ctype 3 information */
  60.  
  61. /*
  62.  *  CType 1 Flag Bits.
  63.  */
  64. #define C1_UPPER             0x0001         /* upper case */
  65. #define C1_LOWER             0x0002         /* lower case */
  66. #define C1_DIGIT             0x0004         /* decimal digits */
  67. #define C1_SPACE             0x0008         /* spacing characters */
  68. #define C1_PUNCT             0x0010         /* punctuation characters */
  69. #define C1_CNTRL             0x0020         /* control characters */
  70. #define C1_BLANK             0x0040         /* blank characters */
  71. #define C1_XDIGIT            0x0080         /* other digits */
  72. #define C1_ALPHA             0x0100         /* any letter */
  73.  
  74. /*
  75.  *  CType 2 Flag Bits.
  76.  */
  77. #define C2_LEFTTORIGHT       0x1            /* left to right */
  78. #define C2_RIGHTTOLEFT       0x2            /* right to left */
  79.  
  80. #define C2_EUROPENUMBER      0x3            /* European number, digit */
  81. #define C2_EUROPESEPARATOR   0x4            /* European numeric separator */
  82. #define C2_EUROPETERMINATOR  0x5            /* European numeric terminator */
  83. #define C2_ARABICNUMBER      0x6            /* Arabic number */
  84. #define C2_COMMONSEPARATOR   0x7            /* common numeric separator */
  85.  
  86. #define C2_BLOCKSEPARATOR    0x8            /* block separator */
  87. #define C2_SEGMENTSEPARATOR  0x9            /* segment separator */
  88. #define C2_WHITESPACE        0xA            /* white space */
  89. #define C2_OTHERNEUTRAL      0xB            /* other neutrals */
  90.  
  91. #define C2_NOTAPPLICABLE     0x0            /* no implicit directionality */
  92.  
  93. /*
  94.  *  CType 3 Flag Bits.
  95.  */
  96. #define C3_NONSPACING        0x0001         /* nonspacing character */
  97. #define C3_DIACRITIC         0x0002         /* diacritic mark */
  98. #define C3_VOWELMARK         0x0004         /* vowel mark */
  99. #define C3_SYMBOL            0x0008         /* symbols */
  100.  
  101. #define C3_KATAKANA          0x0010
  102. #define C3_HIRAGANA          0x0020
  103. #define C3_HALFWIDTH         0x0040
  104. #define C3_FULLWIDTH         0x0080
  105. #define C3_IDEOGRAPH         0x0100
  106. #define C3_KASHIDA           0x0200
  107. #define C3_ALPHA             0x8000
  108.  
  109. #define C3_NOTAPPLICABLE     0x0            /* ctype 3 is not applicable */
  110.  
  111.  
  112. /*
  113.  *  String Flags.
  114.  */
  115. #define NORM_IGNORECASE         0x00000001  /* ignore case */
  116. #define NORM_IGNORENONSPACE     0x00000002  /* ignore nonspacing chars */
  117. #define NORM_IGNORESYMBOLS      0x00000004  /* ignore symbols */
  118.  
  119. #define NORM_IGNOREWIDTH        0x00000008  /* ignore width */
  120. #define NORM_IGNOREKANATYPE     0x00000040  /* ignore kanatype */
  121.  
  122. #define NORM_IGNOREKASHIDA      0x00040000  /* ignore Arabic kashida chars */
  123.  
  124.  
  125. /*
  126.  *  Locale Dependent Mapping Flags.
  127.  */
  128. #define LCMAP_LOWERCASE      0x00000100 /* lower case letters */
  129. #define LCMAP_UPPERCASE      0x00000200 /* upper case letters */
  130. #define LCMAP_SORTKEY        0x00000400 /* WC sort key (normalize) */
  131.  
  132. #define LCMAP_HALFWIDTH      0x00000800  /* narrow pitch case letters */
  133. #define LCMAP_FULLWIDTH      0x00001000  /* wide picth case letters */ 
  134. #define LCMAP_HIRAGANA       0x00002000  /* map katakana to hiragana */
  135. #define LCMAP_KATAKANA       0x00004000  /* map hiragana to katakana */
  136.  
  137.  
  138. /*
  139.  *  Language IDs.
  140.  *
  141.  *  The following two combinations of primary language ID and
  142.  *  sublanguage ID have special semantics: 
  143.  *
  144.  *    Primary Language ID   Sublanguage ID      Result
  145.  *    -------------------   ---------------     ------------------------
  146.  *    LANG_NEUTRAL          SUBLANG_NEUTRAL     Language neutral
  147.  *    LANG_NEUTRAL          SUBLANG_DEFAULT     Process default language
  148.  *    LANG_NEUTRAL          SUBLANG_SYS_DEFAULT System default language  
  149.  */
  150.  
  151. /*
  152.  *  Primary language IDs.
  153.  */
  154. #define LANG_NEUTRAL                     0x00
  155.  
  156. #define LANG_ALBANIAN                    0x1c
  157. #define LANG_ARABIC                      0x01
  158. #define LANG_BAHASA                      0x21
  159. #define LANG_BULGARIAN                   0x02
  160. #define LANG_CATALAN                     0x03
  161. #define LANG_CHINESE                     0x04
  162. #define LANG_CZECH                       0x05
  163. #define LANG_DANISH                      0x06
  164. #define LANG_DUTCH                       0x13
  165. #define LANG_ENGLISH                     0x09
  166. #define LANG_FINNISH                     0x0b
  167. #define LANG_FRENCH                      0x0c
  168. #define LANG_GERMAN                      0x07
  169. #define LANG_GREEK                       0x08
  170. #define LANG_HEBREW                      0x0d
  171. #define LANG_HUNGARIAN                   0x0e
  172. #define LANG_ICELANDIC                   0x0f
  173. #define LANG_ITALIAN                     0x10
  174. #define LANG_JAPANESE                    0x11
  175. #define LANG_KOREAN                      0x12
  176. #define LANG_NORWEGIAN                   0x14
  177. #define LANG_POLISH                      0x15
  178. #define LANG_PORTUGUESE                  0x16
  179. #define LANG_RHAETO_ROMAN                0x17
  180. #define LANG_ROMANIAN                    0x18
  181. #define LANG_RUSSIAN                     0x19
  182. #define LANG_SERBO_CROATIAN              0x1a
  183. #define LANG_SLOVAK                      0x1b
  184. #define LANG_SPANISH                     0x0a
  185. #define LANG_SWEDISH                     0x1d
  186. #define LANG_THAI                        0x1e
  187. #define LANG_TURKISH                     0x1f
  188. #define LANG_URDU                        0x20
  189.  
  190. /*
  191.  *  Sublanguage IDs.
  192.  *
  193.  *  The name immediately following SUBLANG_ dictates which primary
  194.  *  language ID that sublanguage ID can be combined with to form a
  195.  *  valid language ID.
  196.  */
  197. #define SUBLANG_NEUTRAL                  0x00    /* language neutral */
  198. #define SUBLANG_DEFAULT                  0x01    /* user default */
  199. #define SUBLANG_SYS_DEFAULT              0x02    /* system default */
  200.  
  201. #define SUBLANG_CHINESE_SIMPLIFIED       0x02    /* Chinese (Simplified) */
  202. #define SUBLANG_CHINESE_TRADITIONAL      0x01    /* Chinese (Traditional) */ 
  203. #define SUBLANG_DUTCH                    0x01    /* Dutch */
  204. #define SUBLANG_DUTCH_BELGIAN            0x02    /* Dutch (Belgian) */
  205. #define SUBLANG_ENGLISH_US               0x01    /* English (USA) */
  206. #define SUBLANG_ENGLISH_UK               0x02    /* English (UK) */
  207. #define SUBLANG_ENGLISH_AUS              0x03    /* English (Australian) */
  208. #define SUBLANG_ENGLISH_CAN              0x04    /* English (Canadian) */
  209. #define SUBLANG_ENGLISH_NZ               0x05    /* English (New Zealand) */
  210. #define SUBLANG_ENGLISH_EIRE             0x06    /* English (Irish) */
  211. #define SUBLANG_FRENCH                   0x01    /* French */
  212. #define SUBLANG_FRENCH_BELGIAN           0x02    /* French (Belgian) */
  213. #define SUBLANG_FRENCH_CANADIAN          0x03    /* French (Canadian) */
  214. #define SUBLANG_FRENCH_SWISS             0x04    /* French (Swiss) */
  215. #define SUBLANG_GERMAN                   0x01    /* German */
  216. #define SUBLANG_GERMAN_SWISS             0x02    /* German (Swiss) */
  217. #define SUBLANG_GERMAN_AUSTRIAN          0x03    /* German (Austrian) */
  218. #define SUBLANG_ITALIAN                  0x01    /* Italian */
  219. #define SUBLANG_ITALIAN_SWISS            0x02    /* Italian (Swiss) */
  220. #define SUBLANG_NORWEGIAN_BOKMAL         0x01    /* Norwegian (Bokmal) */
  221. #define SUBLANG_NORWEGIAN_NYNORSK        0x02    /* Norwegian (Nynorsk) */
  222. #define SUBLANG_PORTUGUESE               0x02    /* Portuguese */
  223. #define SUBLANG_PORTUGUESE_BRAZILIAN     0x01    /* Portuguese (Brazilian) */
  224. #define SUBLANG_SERBO_CROATIAN_CYRILLIC  0x02    /* Serbo-Croatian (Cyrillic) */
  225. #define SUBLANG_SERBO_CROATIAN_LATIN     0x01    /* Croato-Serbian (Latin) */
  226. #define SUBLANG_SPANISH                  0x01    /* Spanish */
  227. #define SUBLANG_SPANISH_MEXICAN          0x02    /* Spanish (Mexican) */
  228. #define SUBLANG_SPANISH_MODERN           0x03    /* Spanish (Modern) */
  229.  
  230.  
  231. /*
  232.  *  Country Codes.
  233.  */
  234. #define CTRY_DEFAULT                     0
  235.  
  236. #define CTRY_AUSTRALIA                   61      /* Australia */
  237. #define CTRY_AUSTRIA                     43      /* Austria */
  238. #define CTRY_BELGIUM                     32      /* Belgium */
  239. #define CTRY_BRAZIL                      55      /* Brazil */
  240. #define CTRY_CANADA                      2       /* Canada */
  241. #define CTRY_DENMARK                     45      /* Denmark */
  242. #define CTRY_FINLAND                     358     /* Finland */
  243. #define CTRY_FRANCE                      33      /* France */
  244. #define CTRY_GERMANY                     49      /* Germany */
  245. #define CTRY_ICELAND                     354     /* Iceland */
  246. #define CTRY_IRELAND                     353     /* Ireland */
  247. #define CTRY_ITALY                       39      /* Italy */
  248. #define CTRY_JAPAN                       81      /* Japan */
  249. #define CTRY_MEXICO                      52      /* Mexico */
  250. #define CTRY_NETHERLANDS                 31      /* Netherlands */
  251. #define CTRY_NEW_ZEALAND                 64      /* New Zealand */
  252. #define CTRY_NORWAY                      47      /* Norway */
  253. #define CTRY_PORTUGAL                    351     /* Portugal */
  254. #define CTRY_PRCHINA                     86      /* PR China */
  255. #define CTRY_SOUTH_KOREA                 82      /* South Korea */
  256. #define CTRY_SPAIN                       34      /* Spain */
  257. #define CTRY_SWEDEN                      46      /* Sweden */
  258. #define CTRY_SWITZERLAND                 41      /* Switzerland */
  259. #define CTRY_TAIWAN                      886     /* Taiwan */
  260. #define CTRY_UNITED_KINGDOM              44      /* United Kingdom */
  261. #define CTRY_UNITED_STATES               1       /* United States */
  262.  
  263.  
  264. /*
  265.  *  Locale Types.
  266.  *
  267.  *  These types are used for the GetLocaleInfoA NLS API routine.
  268.  */
  269.  
  270. #define LOCALE_NOUSEROVERRIDE   0x80000000    /* OR in to avoid user override */
  271.  
  272. #define LOCALE_ILANGUAGE            0x0001    /* language id */
  273. #define LOCALE_SLANGUAGE            0x0002    /* localized name of language */
  274. #define LOCALE_SENGLANGUAGE         0x1001    /* English name of language */
  275. #define LOCALE_SABBREVLANGNAME      0x0003    /* abbreviated language name */
  276. #define LOCALE_SNATIVELANGNAME      0x0004    /* native name of language */
  277. #define LOCALE_ICOUNTRY             0x0005    /* country code */
  278. #define LOCALE_SCOUNTRY             0x0006    /* localized name of country */  
  279. #define LOCALE_SENGCOUNTRY          0x1002    /* English name of country */  
  280. #define LOCALE_SABBREVCTRYNAME      0x0007    /* abbreviated country name */
  281. #define LOCALE_SNATIVECTRYNAME      0x0008    /* native name of country */  
  282. #define LOCALE_IDEFAULTLANGUAGE     0x0009    /* default language id */
  283. #define LOCALE_IDEFAULTCOUNTRY      0x000A    /* default country code */
  284. #define LOCALE_IDEFAULTCODEPAGE     0x000B    /* default oem code page */
  285. #define LOCALE_IDEFAULTANSICODEPAGE 0x1004    /* default ansi code page */
  286.                         
  287. #define LOCALE_SLIST                0x000C    /* list item separator */
  288. #define LOCALE_IMEASURE             0x000D    /* 0 = metric, 1 = US */
  289.                         
  290. #define LOCALE_SDECIMAL             0x000E    /* decimal separator */
  291. #define LOCALE_STHOUSAND            0x000F    /* thousand separator */
  292. #define LOCALE_SGROUPING            0x0010    /* digit grouping */
  293. #define LOCALE_IDIGITS              0x0011    /* number of fractional digits */
  294. #define LOCALE_ILZERO               0x0012    /* leading zeros for decimal */
  295. #define LOCALE_INEGNUMBER           0x1010    /* negative number mode */
  296. #define LOCALE_SNATIVEDIGITS        0x0013    /* native ascii 0-9 */
  297.                         
  298. #define LOCALE_SCURRENCY            0x0014    /* local monetary symbol */
  299. #define LOCALE_SINTLSYMBOL          0x0015    /* intl monetary symbol */
  300. #define LOCALE_SMONDECIMALSEP       0x0016    /* monetary decimal separator */
  301. #define LOCALE_SMONTHOUSANDSEP      0x0017    /* monetary thousand separator */
  302. #define LOCALE_SMONGROUPING         0x0018    /* monetary grouping */
  303. #define LOCALE_ICURRDIGITS          0x0019    /* # local monetary digits */
  304. #define LOCALE_IINTLCURRDIGITS      0x001A    /* # intl monetary digits */
  305. #define LOCALE_ICURRENCY            0x001B    /* positive currency mode */
  306. #define LOCALE_INEGCURR             0x001C    /* negative currency mode */
  307.                         
  308. #define LOCALE_SDATE                0x001D    /* date separator */
  309. #define LOCALE_STIME                0x001E    /* time separator */
  310. #define LOCALE_SSHORTDATE           0x001F    /* short date-time separator */
  311. #define LOCALE_SLONGDATE            0x0020    /* long date-time separator */
  312. #define LOCALE_STIMEFORMAT          0x1003    /* time format string */
  313. #define LOCALE_IDATE                0x0021    /* short date format ordering */
  314. #define LOCALE_ILDATE               0x0022    /* long date format ordering */
  315. #define LOCALE_ITIME                0x0023    /* time format specifier */
  316. #define LOCALE_ITIMEMARKPOSN        0x1005    /* time marker position */
  317. #define LOCALE_ICENTURY             0x0024    /* century format specifier */
  318. #define LOCALE_ITLZERO              0x0025    /* leading zeros in time field */
  319. #define LOCALE_IDAYLZERO            0x0026    /* leading zeros in day field */
  320. #define LOCALE_IMONLZERO            0x0027    /* leading zeros in month field */
  321. #define LOCALE_S1159                0x0028    /* AM designator */
  322. #define LOCALE_S2359                0x0029    /* PM designator */
  323.  
  324. #define LOCALE_ICALENDARTYPE        0x1009    /* type of calendar specifier */
  325. #define LOCALE_IOPTIONALCALENDAR    0x100B    /* additional calendar types specifier */
  326.  
  327. #define LOCALE_IFIRSTDAYOFWEEK      0x100C    /* first day of week specifier */
  328. #define LOCALE_IFIRSTWEEKOFYEAR     0x100D    /* first week of year specifier */
  329.  
  330.                         
  331. #define LOCALE_SDAYNAME1            0x002A    /* long name for Monday */
  332. #define LOCALE_SDAYNAME2            0x002B    /* long name for Tuesday */
  333. #define LOCALE_SDAYNAME3            0x002C    /* long name for Wednesday */
  334. #define LOCALE_SDAYNAME4            0x002D    /* long name for Thursday */
  335. #define LOCALE_SDAYNAME5            0x002E    /* long name for Friday */
  336. #define LOCALE_SDAYNAME6            0x002F    /* long name for Saturday */
  337. #define LOCALE_SDAYNAME7            0x0030    /* long name for Sunday */
  338. #define LOCALE_SABBREVDAYNAME1      0x0031    /* abbreviated name for Monday */   
  339. #define LOCALE_SABBREVDAYNAME2      0x0032    /* abbreviated name for Tuesday */  
  340. #define LOCALE_SABBREVDAYNAME3      0x0033    /* abbreviated name for Wednesday */
  341. #define LOCALE_SABBREVDAYNAME4      0x0034    /* abbreviated name for Thursday */ 
  342. #define LOCALE_SABBREVDAYNAME5      0x0035    /* abbreviated name for Friday */   
  343. #define LOCALE_SABBREVDAYNAME6      0x0036    /* abbreviated name for Saturday */ 
  344. #define LOCALE_SABBREVDAYNAME7      0x0037    /* abbreviated name for Sunday */   
  345. #define LOCALE_SMONTHNAME1          0x0038    /* long name for January */
  346. #define LOCALE_SMONTHNAME2          0x0039    /* long name for February */
  347. #define LOCALE_SMONTHNAME3          0x003A    /* long name for March */
  348. #define LOCALE_SMONTHNAME4          0x003B    /* long name for April */
  349. #define LOCALE_SMONTHNAME5          0x003C    /* long name for May */
  350. #define LOCALE_SMONTHNAME6          0x003D    /* long name for June */
  351. #define LOCALE_SMONTHNAME7          0x003E    /* long name for July */
  352. #define LOCALE_SMONTHNAME8          0x003F    /* long name for August */
  353. #define LOCALE_SMONTHNAME9          0x0040    /* long name for September */
  354. #define LOCALE_SMONTHNAME10         0x0041    /* long name for October */
  355. #define LOCALE_SMONTHNAME11         0x0042    /* long name for November */
  356. #define LOCALE_SMONTHNAME12         0x0043    /* long name for December */
  357. #define LOCALE_SMONTHNAME13         0x100E    /* long name for 13th month (if exists) */
  358. #define LOCALE_SABBREVMONTHNAME1    0x0044    /* abbreviated name for January */
  359. #define LOCALE_SABBREVMONTHNAME2    0x0045    /* abbreviated name for February */
  360. #define LOCALE_SABBREVMONTHNAME3    0x0046    /* abbreviated name for March */
  361. #define LOCALE_SABBREVMONTHNAME4    0x0047    /* abbreviated name for April */
  362. #define LOCALE_SABBREVMONTHNAME5    0x0048    /* abbreviated name for May */
  363. #define LOCALE_SABBREVMONTHNAME6    0x0049    /* abbreviated name for June */
  364. #define LOCALE_SABBREVMONTHNAME7    0x004A    /* abbreviated name for July */
  365. #define LOCALE_SABBREVMONTHNAME8    0x004B    /* abbreviated name for August */
  366. #define LOCALE_SABBREVMONTHNAME9    0x004C    /* abbreviated name for September */
  367. #define LOCALE_SABBREVMONTHNAME10   0x004D    /* abbreviated name for October */
  368. #define LOCALE_SABBREVMONTHNAME11   0x004E    /* abbreviated name for November */
  369. #define LOCALE_SABBREVMONTHNAME12   0x004F    /* abbreviated name for December */
  370. #define LOCALE_SABBREVMONTHNAME13   0x100F    /* abbreviated name for 13th month (if exists) */
  371.                         
  372. #define LOCALE_SPOSITIVESIGN        0x0050    /* positive sign */
  373. #define LOCALE_SNEGATIVESIGN        0x0051    /* negative sign */
  374. #define LOCALE_IPOSSIGNPOSN         0x0052    /* positive sign position */
  375. #define LOCALE_INEGSIGNPOSN         0x0053    /* negative sign position */
  376. #define LOCALE_IPOSSYMPRECEDES      0x0054    /* mon sym precedes pos amt */
  377. #define LOCALE_IPOSSEPBYSPACE       0x0055    /* mon sym sep by space from pos */ 
  378. #define LOCALE_INEGSYMPRECEDES      0x0056    /* mon sym precedes neg amt */
  379. #define LOCALE_INEGSEPBYSPACE       0x0057    /* mon sym sep by space from neg */
  380.     
  381.     
  382. /***************************************************************************\
  383. * Typedefs
  384. *
  385. * Define all types for the NLS component here.
  386. \***************************************************************************/
  387.  
  388. /*
  389.  *  IDs.
  390.  */
  391. typedef unsigned long  LCID;                  /* locale ID */
  392. typedef unsigned short LANGID;                /* language ID */
  393. typedef unsigned long  LCTYPE;                /* locale type constant */
  394.  
  395. #define _LCID_DEFINED
  396.  
  397.  
  398.  
  399. /***************************************************************************\
  400. * Macros
  401. *
  402. * Define all macros for the NLS component here.
  403. \***************************************************************************/
  404.  
  405. /*
  406.  *  A language ID is a 16 bit value which is the combination of a
  407.  *  primary language ID and a secondary language ID.  The bits are
  408.  *  allocated as follows:
  409.  *
  410.  *       +-----------------------+-------------------------+
  411.  *       |      Sublanguage ID   |   Primary Language ID   |
  412.  *       +-----------------------+-------------------------+
  413.  *        15                   10 9                       0   bit
  414.  *
  415.  *
  416.  *  Language ID creation/extraction macros:
  417.  *
  418.  *    MAKELANGID    - construct language id from primary language id and
  419.  *                    sublanguage id.
  420.  *    PRIMARYLANGID - extract primary language id from a language id.
  421.  *    SUBLANGID     - extract sublanguage id from a language id.
  422.  */
  423. #define MAKELANGID(p, s)       ((((unsigned short)(s)) << 10) | (unsigned short)(p))
  424.  
  425. #define PRIMARYLANGID(lgid)    ((unsigned short)(lgid) & 0x3ff)
  426.  
  427. #define SUBLANGID(lgid)        ((unsigned short)(lgid) >> 10)
  428.  
  429.  
  430. /*
  431.  *  A locale ID is a 32 bit value which is the combination of a
  432.  *  language ID and a reserved area.  The bits are allocated as follows:
  433.  *
  434.  *       +-----------------------+-------------------------+
  435.  *       |       Reserved        |      Language ID        |
  436.  *       +-----------------------+-------------------------+
  437.  *        31                   16 15                      0   bit
  438.  *
  439.  *
  440.  *  Locale ID creation macro:
  441.  *
  442.  *    MAKELCID - construct locale id from a language id.
  443.  */
  444. #define MAKELCID(lgid)         ((unsigned long)(((unsigned short)(lgid)) | (((unsigned long)((unsigned short)(0))) << 16)))
  445.  
  446.  
  447. /*
  448.  *  Get the language id from a locale id.
  449.  */
  450. #define LANGIDFROMLCID(lcid)   ((unsigned short)(lcid))
  451.  
  452.  
  453. /*
  454.  *  Default System and User IDs for language and locale.
  455.  */
  456. #define LANG_SYSTEM_DEFAULT    (MAKELANGID(LANG_NEUTRAL, SUBLANG_SYS_DEFAULT))
  457. #define LANG_USER_DEFAULT      (MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT))
  458.  
  459. #define LOCALE_SYSTEM_DEFAULT  (MAKELCID(LANG_SYSTEM_DEFAULT))
  460. #define LOCALE_USER_DEFAULT    (MAKELCID(LANG_USER_DEFAULT))
  461.  
  462.  
  463.  
  464. /***************************************************************************\
  465. * Function Prototypes
  466. *
  467. * Only prototypes for the NLS APIs should go here.
  468. \***************************************************************************/
  469.  
  470.  
  471. NLSAPI_(int)
  472. CompareStringA(LCID, unsigned long, const char FAR*, int, const char FAR*, int);
  473.  
  474. NLSAPI_(int)
  475. LCMapStringA(LCID, unsigned long, const char FAR*, int, char FAR*, int);
  476.  
  477. NLSAPI_(int)
  478. GetLocaleInfoA(LCID, LCTYPE, char FAR*, int);
  479.  
  480. NLSAPI_(int)
  481. GetStringTypeA(LCID, unsigned long, const char FAR*, int, unsigned short FAR*);
  482.  
  483. NLSAPI_(LANGID)
  484. GetSystemDefaultLangID(void);
  485.  
  486. NLSAPI_(LANGID)
  487. GetUserDefaultLangID(void);
  488.  
  489. NLSAPI_(LCID)
  490. GetSystemDefaultLCID(void);
  491.  
  492. NLSAPI_(LCID)
  493. GetUserDefaultLCID(void);
  494.  
  495.  
  496. #ifdef __cplusplus
  497. }
  498. #endif
  499.  
  500.  
  501. #endif   /* NONLS */
  502.  
  503. #endif   /* _OLENLS_ */
  504.